| class BUCKET{E} < $BUCKET{E,BUCKET{E}} |
|---|
| **** | Mainly this class adds an item to NEXT and gives some handy constructors. |
| $BUCKET{_,_} | $NEXT{_} | NEXT{_} |
| attr item: E; |
|---|
| attr item: E; |
|---|
| copy_list: SAME |
|---|
| **** | Returns a copy of self and all following links. The objects will not be 'copy'ed. Self may be void. |
| create(e:E): SAME |
|---|
| **** | Create a link containing e. |
| create(e:E,n:SAME): SAME |
|---|
| **** | Create a link containig e and prepending the link n. n may be void. |
| list!: SAME |
|---|
| **** | Yields all subsequent elements in the list. |